home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
image
/
qpng17e.zip
/
INSTALL.DAT
/
DRVSRC
/
DRVSRC.ZIP
/
REALTEK.ASM
< prev
next >
Wrap
Assembly Source File
|
1995-03-31
|
905b
|
31 lines
;
; QPV/386 driver for SVGA cards with Realtek RTG 3105 chipset
; and probably other Realtek chips. (This was actually written for a
; PT-505 with 512k, but should work with any RTG 3105 compatible card.)
; By Christopher L. Tumber
; aa993@freenet.carleton.ca
.286
Code Segment Para 'Code'
Assume cs:Code
Org 100h
Procs dw Bank,Init,Exit,0
Bank:
mov dx,3d7h ;RTG CPU R/W port
out dx,al
retf
Init:
retf
Exit:
retf
Code Ends
End Procs
; Whew! Complicated eh?